type net/http.http2FrameWriteRequest

52 uses

	net/http (current package)
		h2_bundle.go#L4392: 		wantWriteFrameCh:            make(chan http2FrameWriteRequest, 8),
		h2_bundle.go#L4545: 	wantWriteFrameCh chan http2FrameWriteRequest // from handlers -> serve
		h2_bundle.go#L4825: 	wr  http2FrameWriteRequest // what was written (or attempted)
		h2_bundle.go#L4833: func (sc *http2serverConn) writeFrameAsync(wr http2FrameWriteRequest, wd *http2writeData) {
		h2_bundle.go#L4895: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L5042: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L5126: 	err := sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L5169: func (sc *http2serverConn) writeFrameFromHandler(wr http2FrameWriteRequest) error {
		h2_bundle.go#L5189: func (sc *http2serverConn) writeFrame(wr http2FrameWriteRequest) {
		h2_bundle.go#L5253: func (sc *http2serverConn) startFrameWrite(wr http2FrameWriteRequest) {
		h2_bundle.go#L5387: 			sc.startFrameWrite(http2FrameWriteRequest{
		h2_bundle.go#L5397: 			sc.startFrameWrite(http2FrameWriteRequest{write: http2writeSettingsAck{}})
		h2_bundle.go#L5410: 			sc.startFrameWrite(http2FrameWriteRequest{write: http2flushFrameWriter{}})
		h2_bundle.go#L5474: 	sc.writeFrame(http2FrameWriteRequest{write: se})
		h2_bundle.go#L5613: 	sc.writeFrame(http2FrameWriteRequest{write: http2writePingAck{f}})
		h2_bundle.go#L5962: 	st.sc.writeFrameFromHandler(http2FrameWriteRequest{write: http2StreamError{
		h2_bundle.go#L6371: 			sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L6412: 	if err := sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L6435: 	sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L6490: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L7201: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L10984: 	Push(wr http2FrameWriteRequest)
		h2_bundle.go#L10990: 	Pop() (wr http2FrameWriteRequest, ok bool)
		h2_bundle.go#L11001: type http2FrameWriteRequest struct {
		h2_bundle.go#L11020: func (wr http2FrameWriteRequest) StreamID() uint32 {
		h2_bundle.go#L11036: func (wr http2FrameWriteRequest) isControl() bool {
		h2_bundle.go#L11042: func (wr http2FrameWriteRequest) DataSize() int {
		h2_bundle.go#L11059: func (wr http2FrameWriteRequest) Consume(n int32) (http2FrameWriteRequest, http2FrameWriteRequest, int) {
		h2_bundle.go#L11060: 	var empty http2FrameWriteRequest
		h2_bundle.go#L11081: 		consumed := http2FrameWriteRequest{
		h2_bundle.go#L11095: 		rest := http2FrameWriteRequest{
		h2_bundle.go#L11114: func (wr http2FrameWriteRequest) String() string {
		h2_bundle.go#L11126: func (wr *http2FrameWriteRequest) replyToWriter(err error) {
		h2_bundle.go#L11140: 	s          []http2FrameWriteRequest
		h2_bundle.go#L11146: func (q *http2writeQueue) push(wr http2FrameWriteRequest) {
		h2_bundle.go#L11150: func (q *http2writeQueue) shift() http2FrameWriteRequest {
		h2_bundle.go#L11157: 	q.s[len(q.s)-1] = http2FrameWriteRequest{}
		h2_bundle.go#L11166: func (q *http2writeQueue) consume(n int32) (http2FrameWriteRequest, bool) {
		h2_bundle.go#L11168: 		return http2FrameWriteRequest{}, false
		h2_bundle.go#L11173: 		return http2FrameWriteRequest{}, false
		h2_bundle.go#L11189: 		q.s[i] = http2FrameWriteRequest{}
		h2_bundle.go#L11581: func (ws *http2priorityWriteScheduler) Push(wr http2FrameWriteRequest) {
		h2_bundle.go#L11601: func (ws *http2priorityWriteScheduler) Pop() (wr http2FrameWriteRequest, ok bool) {
		h2_bundle.go#L11688: func (ws *http2randomWriteScheduler) Push(wr http2FrameWriteRequest) {
		h2_bundle.go#L11702: func (ws *http2randomWriteScheduler) Pop() (http2FrameWriteRequest, bool) {
		h2_bundle.go#L11717: 	return http2FrameWriteRequest{}, false
		h2_bundle.go#L11788: func (ws *http2roundRobinWriteScheduler) Push(wr http2FrameWriteRequest) {
		h2_bundle.go#L11807: func (ws *http2roundRobinWriteScheduler) Pop() (http2FrameWriteRequest, bool) {
		h2_bundle.go#L11813: 		return http2FrameWriteRequest{}, false
		h2_bundle.go#L11826: 	return http2FrameWriteRequest{}, false